home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / libol / format.h < prev    next >
C/C++ Source or Header  |  2005-10-16  |  2KB  |  60 lines

  1. /***************************************************************************
  2.  *
  3.  * Copyright (c) 1998-1999 Niels M÷ller
  4.  * Copyright (c) 1999 BalaBit Computing
  5.  * 
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * $Id: format.h,v 1.6 2001/10/21 11:03:08 bazsi Exp $
  21.  *
  22.  ***************************************************************************/
  23.  
  24. #ifndef __FORMAT_H_INCLUDED
  25. #define __FORMAT_H_INCLUDED
  26.  
  27. #include "objects.h"
  28.  
  29. #include <stdarg.h>
  30.  
  31. #ifndef va_copy
  32. #  ifdef __va_copy
  33. #    define va_copy __va_copy
  34. #  endif
  35. #endif
  36.  
  37. #ifndef va_copy
  38. #define va_copy(a, b)
  39. #endif
  40.  
  41. struct ol_string *c_format(const char *format, ...);
  42. UINT32 c_format_length(const char *format, ...);
  43. UINT32 c_format_write(const char *format, UINT32 length, UINT8 *buffer, ...);
  44.  
  45. UINT32 c_vformat_length(const char *format, va_list args);
  46. UINT32 c_vformat_write(const char *format, UINT32 length, UINT8 *buffer, va_list args);
  47.  
  48. /* Short cut */
  49. #define ol_string_dup(s) (c_format("%S", (s)))
  50.  
  51. unsigned format_size_in_decimal(UINT32 n);
  52. UINT32 format_size_in_hex(UINT32 n);
  53.  
  54.  
  55. struct ol_string *format_cstring(const char *s);
  56. struct ol_string *make_cstring(struct ol_string *s, int free);
  57. struct ol_string *c_format_cstring(const char *format, ...);
  58.  
  59. #endif /* LSH_FORMAT_H_INCLUDED */
  60.